a9c10ad414dc1e3362d904e4356f8cf720a965fa,src/frontend/org/voltdb/export/ExportGeneration.java,ExportGeneration,pushExportBuffer,#number#String#number#ByteBuffer#boolean#boolean#,669
Before Change
if (sources == null) {
exportLog.error("Could not find export data sources for partition "
+ partitionId + " generation " + m_timestamp + " the export data is being discarded");
DBBPool.wrapBB(buffer).discard();
return;
}
After Change
if (sources == null) {
exportLog.error("Could not find export data sources for partition "
+ partitionId + " generation " + m_timestamp + " the export data is being discarded");
if (buffer != null) {
DBBPool.wrapBB(buffer).discard();
}
return;
}